home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue45
/
Construc
/
BOBNOTES.DPR
< prev
next >
Wrap
Text File
|
2000-11-02
|
295b
|
17 lines
program BobNotes;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1},
BobNotes_TLB in 'BobNotes_TLB.pas',
Unit2 in 'Unit2.pas' {CorBobNotes: CoClass};
{$R *.TLB} {CORBA}
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.